home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / formre1r / frmtest.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-19  |  1KB  |  51 lines

  1. VERSION 5.00
  2. Begin VB.Form frmTest 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Current App.Path"
  5.    ClientHeight    =   1170
  6.    ClientLeft      =   45
  7.    ClientTop       =   285
  8.    ClientWidth     =   3045
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1170
  13.    ScaleWidth      =   3045
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   3  'Windows Default
  16.    Begin VB.TextBox txtAppValue 
  17.       Height          =   315
  18.       Index           =   2
  19.       Left            =   60
  20.       TabIndex        =   2
  21.       Top             =   780
  22.       Width           =   2895
  23.    End
  24.    Begin VB.TextBox txtAppValue 
  25.       Height          =   315
  26.       Index           =   1
  27.       Left            =   60
  28.       TabIndex        =   1
  29.       Top             =   420
  30.       Width           =   2895
  31.    End
  32.    Begin VB.TextBox txtAppValue 
  33.       Height          =   315
  34.       Index           =   0
  35.       Left            =   60
  36.       TabIndex        =   0
  37.       Top             =   60
  38.       Width           =   2895
  39.    End
  40. Attribute VB_Name = "frmTest"
  41. Attribute VB_GlobalNameSpace = False
  42. Attribute VB_Creatable = False
  43. Attribute VB_PredeclaredId = True
  44. Attribute VB_Exposed = False
  45. Option Explicit
  46. Private Sub Form_Load()
  47.     txtAppValue(0).Text = App.Path
  48.     txtAppValue(1).Text = App.EXEName
  49.     txtAppValue(2).Text = Command()
  50. End Sub
  51.